In the XML file you can specify weather the command for a given Item has command line arguments or if the command is to be executed as AutoIT code.

	typeflag[|]filename[|]arguments[|]showflag

typeflag	[optional]
			Arg = Run a command with arguments
			AutoIT = Command is an AutoIT function
			
showflag	[optional]
			@SW_HIDE = Hidden window
			@SW_MINIMIZE = Minimized window
			@SW_MAXIMIZE = Maximized window

Examples...
	
	Normal Command
	c:\windows\system32\taskmgr.exe
	
	Command with command line arguments
	Arg[|]c:\windows\system32\Defrag.exe[|]c: -a -v
	
	Hidden command with command line arguments
	Arg[|]c:\windows\system32\Defrag.exe[|]c: -a -v[|]@SW_HIDE
		
	Execute AutoIT function
	AutoIT[|]_Exit()